7272f9718f4776e83c8c24c4ee1b776ca0695707,portal-impl/src/com/liferay/portal/scheduler/SchedulerEngineClusterProxy.java,SchedulerEngineClusterProxy,isMemorySchedulerClusterLockOwner,#Lock#,183
Before Change
throws Exception {
String localClusterNodeId =
ClusterExecutorUtil.getLocalClusterNode().getClusterNodeId();
if (localClusterNodeId.equals(lock.getOwner())) {
return true;
After Change
protected boolean isMemorySchedulerClusterLockOwner(Lock lock)
throws Exception {
ClusterNode clusterNode = ClusterExecutorUtil.getLocalClusterNode();
String localClusterNodeId = clusterNode.getClusterNodeId();
if (localClusterNodeId.equals(lock.getOwner())) {
return true;